home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- echo Are you sure you want to update mywin31.zip to drive b: ?
- pause
- if not exist b:\mywin31.zip goto doit
- echo Existing mywin31.zip would be deleted!!!
- echo Delete manually if you're sure and then try again.
- goto exit
- pause
- :doit
- b:\pkzip -rp b:\mywin31.zip c:\winlite\*.*
- if errorlevel 1 goto abort
- echo Update succeeded.
- goto exit
- :abort
- echo Update aborted -- zip failed.
- :exit
-
-